home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib8 / v_10_10 / 1010065a < prev    next >
Encoding:
Text File  |  1995-11-01  |  347 b   |  18 lines

  1. int function_expecting_pointer_to_int( int *p_input_value);
  2.  
  3. void calling_function(void)
  4.     {
  5.     int i;
  6.     function_expecting_pointer_to_int(&i);
  7.     }
  8.  
  9. int function_expecting_pointer_to_int( int *p_xinput_value)
  10.     {
  11.     int local_variable;
  12.     /* Do something with it */
  13.     local_variable = *p_input_value;
  14.     ...
  15.     }
  16.  
  17.  
  18.